home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / lk_df.zip / DF.MAN < prev    next >
Text File  |  1993-02-23  |  2KB  |  64 lines

  1.      DF(1)               UNIX-wannabe commands for DOS               DF(1)
  2.  
  3.      NAME
  4.      df - display free disk space for all mounted drives
  5.  
  6.      SYNOPSIS
  7.      df [ /? | -? | [drive...] ]
  8.  
  9.      DESCRIPTION
  10.      df searches the system for floppy drives with inserted disks,
  11.          and for local and networked hard drives, and prints a summary of 
  12.          the drives found with total, used, and free space for each drive.
  13.  
  14.          If a floppy drive is present on the system, but has no disk
  15.          inserted, df does not display any information for that drive.
  16.  
  17.          To limit the search to specific drives, specify the drives on
  18.          the command line.
  19.  
  20.      OPTIONS
  21.          /? or -?  Prints a brief help message and exits.
  22.          
  23.          drive...  One or more drives to scan.  The default is to scan
  24.                    all drives.  Currently, df just checks the first
  25.                    letter of each argument; therefore, A:, a:, and
  26.                    aardvark all include the A: drive in the scan.
  27.  
  28.      BUGS
  29.          The display gets ugly if you have a drive much bigger than two
  30.          gigabytes.  This shouldn't be a problem for most people.
  31.  
  32.          Kfree and Kused may not always add up to Ktotal due to round-
  33.          ing errors.
  34.  
  35.          CD-ROMs are not supported.  Running df on a CD-ROM drive does
  36.          not make much sense anyway.
  37.  
  38.      EXAMPLES
  39.          df
  40.               checks all drives and prints a summary for each drive
  41.               found.
  42.  
  43.          df /?
  44.               prints a brief help message and exits.
  45.  
  46.          df a: c:
  47.               checks just the A: and C: drives.
  48.  
  49.      AUTHORS
  50.          df was created by Larry Kollar, mainly from Other People's
  51.          Code.  df is essentially a hack to the program "drives,"
  52.          which was posted to alt.msdos.programmer by Jon Freivald
  53.          <jaf@jaflrn.UUCP>.
  54.  
  55.          The file ceh.asm, which contains the critical error handler,
  56.          was written by Jesse Chisholm with modifications by Jon
  57.          Freivald.
  58.  
  59.      CAVEATS
  60.          I'm a technical writer who likes to play with dangerous
  61.          weapons (shotguns, C compilers, etc.).  Use and abuse df at
  62.          your own risk.
  63.  
  64.